home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Hunks
/
Hot Hunks.iso
/
menu
/
gifv.sle
< prev
next >
Wrap
Text File
|
1993-02-17
|
624b
|
25 lines
;
; GIFV.SLE
; This will use all GIF files on F:\ and it will make all of the pictures
; that are greater than or equal to 800x600 come in normal. If will make files
; that are greater than or equal to 640x480 Fade IN/OUT. If will make the
; rest of the files come in with the BLIND effect.
;
change-path F:\*.gif
:loop
if>=800X600 :do800X600
if>=640X480 :do640X480
slide-type-Blind
GOTO :CONT
:DO800X600
slide-type-normal
GOTO :CONT
:DO640X480
slide-type-Fade
GOTO :CONT
:cont
loadnext :exit
goto :loop
:exit